home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / Report Writers / Crystal Repot 9.0 Full CD version / Setup.exe / Tools / Developers / PEDELF32.ZIP / pedelf32 / CRPEDEMO.DPR < prev    next >
Encoding:
Text File  |  2002-04-19  |  1.1 KB  |  32 lines

  1. program Crpedemo;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {MainForm},
  6.   Logon in 'LOGON.PAS' {LogOnForm},
  7.   Display in 'DISPLAY.PAS' {TxtForm},
  8.   Prntopt in 'PRNTOPT.PAS' {FrmPrintOptions},
  9.   Location in 'LOCATION.PAS' {FrmLocation},
  10.   Section in 'SECTION.PAS' {FrmSection},
  11.   Formula in 'FORMULA.PAS' {FrmFormulas},
  12.   About in 'ABOUT.PAS' {AboutBox},
  13.   SetLoc in 'SETLOC.PAS' {FrmSetLoc},
  14.   CRDelphi in '..\Program Files\Seagate Software\Crystal Reports\Developer Files\include\crdelphi.pas';
  15.  
  16. {$R *.RES}
  17.  
  18. begin
  19.   Application.Title := 'Delphi Print Engine Application';
  20.   Application.HelpFile := 'D:\CRPEDEMO\PROPRTYS.HLP';
  21.   Application.CreateForm(TMainForm, MainForm);
  22.   Application.CreateForm(TLogOnForm, LogOnForm);
  23.   Application.CreateForm(TTxtForm, TxtForm);
  24.   Application.CreateForm(TFrmPrintOptions, FrmPrintOptions);
  25.   Application.CreateForm(TFrmLocation, FrmLocation);
  26.   Application.CreateForm(TFrmSection, FrmSection);
  27.   Application.CreateForm(TFrmFormulas, FrmFormulas);
  28.   Application.CreateForm(TAboutBox, AboutBox);
  29.   Application.CreateForm(TFrmSetLoc, FrmSetLoc);
  30.   Application.Run;
  31. end.
  32.